* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none !important;
}

html,
body {
    overflow-x: hidden;
}

:root {
    --y-color: #F79F24;
    --black: #000000;
    --p-color: #262938;
    --w-color: #ffffff;
    --poppins: 'Poppins', sans-serif;
}


/*--------Global classes--------*/

.c-btn {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 1.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
    cursor: pointer !important;
}

.c-btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

.c-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.c-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.c-btn::after {
    background-color: var(--y-color);
}

.c-btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.box {
    position: relative;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 80px;
    height: 80px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: var(--y-color);
    background: linear-gradient(var(--y-color) 0%, var(--y-color) 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid var(--p-color);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--p-color);
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--p-color);
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--p-color);
}

.y-color {
    color: var(--y-color);
}

.carousel-img img {
    border-radius: 7px;
    box-shadow: 0px 9px 13px #00000067;
    border: 4px solid var(--y-color);
}


/*--X-----Global classes----X---*/


/* --------Navbar--------- */

.navbar {
    padding: 0px 0px;
    background: var(--black);
    font-family: var(--poppins);
}

.navbar .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--w-color) !important;
    font-weight: 300;
}

.navbar .active {
    color: var(--y-color) !important;
}

.navbar .navbar-toggler>div {
    height: 3px;
    width: 33px;
    background: var(--y-color);
    margin: 4px;
}


/* ---X----Navbar-----X--- */


/* -----Home------ */

#home {
    background: url('../assets/img/bg/bg_new.jpg') no-repeat center/cover;
    height: 100vh;
    font-family: var(--poppins);
}

#home .home-caption {
    position: relative;
    top: 200px;
}

#home .home-caption h4 {
    font-size: 50px;
}

#home .hire {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 3.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
}

#home .hire {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

#home .hire:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#home .hire::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

#home .hire::after {
    background-color: var(--y-color);
}

#home .hire:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}


/* X----Home-----X */


/* ----Services----- */

#services {
    padding: 70px 0px;
    font-family: var(--poppins);
}

#services h5 {
    font-size: 15px;
    color: var(--y-color);
}

#services h4 {
    font-size: 30px;
}

#services .service-icon {
    height: 70px;
    width: 70px;
    border: none !important;
    border-radius: 70px;
    background: var(--y-color);
    font-size: 35px;
    color: var(--w-color);
    margin-top: -34px;
}

#services .card {
    border-radius: 0px !important;
    box-shadow: 0px 7px 13px #00000028;
    text-align: center;
}

#services .book {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 1.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
}

#services .book {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

#services .book:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#services .book::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

#services .book::after {
    background-color: var(--y-color);
}

#services .book:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

#services .link {
    margin-top: 50px;
}


/* X---Services----X */


/* --------About Us-------- */

#about-us {
    padding: 70px 0px;
    font-family: var(--poppins);
}

#about-us h5 {
    color: var(--y-color);
    font-size: 17px;
}

#about-us .img {
    display: flex;
}

#about-us .background-cover {
    position: absolute;
    width: 100%;
    height: 100%;
}

#about-us .background-cover button {
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    top: 0%;
    height: 70px;
    width: 70px;
    border: none !important;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    font-family: inherit;
    font-weight: 500;
    color: var(--y-color);
    background-color: var(--y-color);
    margin-top: 10px;
    left: 38%;
    top: 34%;
}

#about-us .background-cover button {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--w-color);
}

#about-us .background-cover button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#about-us .background-cover button::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

#about-us .background-cover button::after {
    background-color: var(--y-color);
}

#about-us .background-cover button:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

#about-us img {
    border-radius: 7px;
    box-shadow: 0px 6px 9px #00000028;
}


/* X-------About Us-------X */


/* -------Advert----- */

.advert {
    background: url('../assets/img/bg/bg.jpg') no-repeat fixed center/cover;
    font-family: var(--poppins);
    padding: 70px 0px;
}

.advert h4 {
    font-size: 14px;
    color: var(--y-color);
}

.advert h6 {
    font-size: 30px;
}

ul li {
    list-style: none;
}

.advert .fa-check {
    color: var(--y-color);
}


/* X------Advert----X */


/* ------DriversHub---- */

#db {
    padding: 70px 0px;
    font-family: var(--poppins);
}

#db h4 {
    color: var(--y-color);
    font-size: 17px;
}

#db h5 {
    font-size: 30px;
}

#db img {
    border-radius: 7px;
    box-shadow: 0px 5px 9px #00000028;
}


/* --X---DriversHub--X- */


/* ---second advert------ */


/* .s-advert {
    background: url('../assets/img/bg/25.jpg') no-repeat fixed center/cover;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    padding: 100px 0px;
    font-family: var(--poppins);
} */


/* --X-second advert--X--- */


/* -------Service Booking--------- */

#booking {
    padding: 70px 0px;
    font-family: var(--poppins);
    background: var(--p-color);
}

#booking h2 {
    font-size: 17px;
    color: var(--y-color);
    text-align: center;
}

#booking h4 {
    text-transform: uppercase;
    color: var(--y-color);
    font-size: 12px;
}

#booking h1 {
    font-size: 20px;
    color: var(--w-color);
}

#booking img {
    border-radius: 7px;
}

#booking form input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}

#booking form select {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}

#booking form textarea {
    width: 100%;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}


/* X------Service Booking--------X */


/* -------Clients------- */

.clients .client img {
    max-width: 70px;
    margin: auto;
}


/* -X-----Clients-----X- */


/* --------Footer-------- */

footer {
    padding-top: 30px;
    padding-bottom: 20px;
    font-family: var(--poppins);
    background: var(--p-color);
}

footer p {
    color: var(--w-color);
    font-size: 12px;
    margin-top: 10px;
}

footer .social-icons button {
    height: 35px;
    width: 35px;
    border: none !important;
    background: var(--black);
    color: var(--w-color);
    border-radius: 70px;
    margin-right: 7px;
}

footer .social-icons button:hover {
    background: var(--y-color);
}

footer h4 {
    color: var(--w-color);
    font-size: 20px;
}

footer ul li a {
    color: var(--w-color) !important;
    font-size: 13px;
}

footer ul li {
    padding: 8px 0px;
}

footer li {
    color: var(--w-color);
    font-size: 13px;
}

.fa-phone {
    transform: rotate(-270deg);
}

footer input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: var(--w-color);
    color: var(--black);
    border: none !important;
}

footer hr {
    background: var(--w-color);
}

footer .copyright {
    font-size: 15px;
}

footer p a {
    color: var(--y-color) !important;
    font-size: 14px;
}


/* X-------Footer-------X */